home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Apache 1.0 / conf / access.conf-dist next >
Text File  |  1995-12-04  |  2KB  |  59 lines

  1. # access.conf: Global access configuration
  2. # Online docs at http://www.apache.org/
  3.  
  4. # This file defines server settings which affect which types of services
  5. # are allowed, and in what circumstances. 
  6.  
  7. # Each directory to which Apache has access, can be configured with respect
  8. # to which services and features are allowed and/or disabled in that
  9. # directory (and its subdirectories). 
  10.  
  11. # Originally by Rob McCool
  12.  
  13. # /usr/local/etc/httpd/ should be changed to whatever you set ServerRoot to.
  14. <Directory /usr/local/etc/httpd/cgi-bin>
  15. Options Indexes FollowSymLinks
  16. </Directory>
  17.  
  18. # This should be changed to whatever you set DocumentRoot to.
  19.  
  20. <Directory /usr/local/etc/httpd/htdocs>
  21.  
  22. # This may also be "None", "All", or any combination of "Indexes",
  23. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  24.  
  25. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  26. # doesn't give it to you (or at least, not yet).
  27.  
  28. Options Indexes FollowSymLinks
  29.  
  30. # This option allows you to turn on the XBitHack behavior, which allows you
  31. # to make text/html server-parsed by activating the owner x bit with chmod. 
  32. # This directive may be used wherever Options may, and has three
  33. # possible arguments: Off, On or Full. If set to full, Apache will also
  34. # add a Last-Modified header to the document if the group x bit is set.
  35.  
  36. # Unless the server has been compiled with -DXBITHACK, this function is
  37. # off by default. To use, uncomment the following line:
  38.  
  39. #XBitHack Full
  40.  
  41. # This controls which options the .htaccess files in directories can
  42. # override. Can also be "None", or any combination of "Options", "FileInfo", 
  43. # "AuthConfig", and "Limit"
  44.  
  45. AllowOverride All
  46.  
  47. # Controls who can get stuff from this server.
  48.  
  49. <Limit GET>
  50. order allow,deny
  51. allow from all
  52. </Limit>
  53.  
  54. </Directory>
  55.  
  56. # You may place any other directories you wish to have access
  57. # information for after this one.
  58.  
  59.